#keyboard-background{
    background-color: black;
    padding-bottom: 1000px;
    padding-top: 8px;
    width: 575px;
    margin: auto;
}

.keyboard-row-0{
    margin: auto;
    width: fit-content;
}
.keyboard-row-1{
    margin: auto;
    width: fit-content;
}
.keyboard-row-2{
    margin: auto;
    width: fit-content;
}

.keyboard-key {
    text-transform: uppercase;
    width: 50px;
    height: 50px;
    margin: 2px;
    background-color: white;
    border: none;
    border-radius: 10px;
    font-size: large;

    cursor: pointer;
}

.special-key {
    background-color: lightgray;
}

.delete-key {
    text-transform: none;
    width: 100px;
    height: 50px;
    margin-left: 30px;

    cursor: pointer;
}

.special-letter {
    width: 50px;
    height: 50px;
    margin: 8px 25px;
    background-color: white;
    position: relative;
    font-size: large;
    
    cursor: pointer;
    border: none;
    border-radius: 10px;
}
.special-letter span {
    text-transform: uppercase;
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.special-letter-0 img {
    content: url("../Assets/Gun.svg");
    height: 100px;
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
}

.special-letter-1 img {
    content: url("../Assets/Thruster.svg");
    height: 100px;
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
}

.special-letter-2 img {
    content: url("../Assets/Amp.svg");
    height: 100px;
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
}

.special-letter-3 img {
    content: url("../Assets/Shield.svg");
    height: 100px;
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
}

#launch-button {
    width: 500px;
    height: 50px;
    background-color: white;

    font-size: large;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-top: 5px;
    border: none;
    border-radius: 10px;
}

#bottom-bar {
    margin: auto;
    margin-top: 10px;
    padding: 6px 6px;
    width: 500px;
    /* border: 3px solid rgb(86, 86, 86); */
    /* background-color: lightgray; */
    border-radius: 15px;;
}

#skip-to-leaderboard {
    float: right;
    text-decoration: underline;
    color: rgb(156, 173, 176);
    background: none;
    border: none;
    cursor: pointer;
    font-size: medium;
    /* font-weight: bold; */
}  

#animation-toggle-label {
    float: right;
    color: white;
    /* font-weight: bold; */
    margin-right: 5px;
    
}

#animation-toggle {
    position: absolute;
    margin-left: 2px;
    width: 16px;
    height: 16px;
    text-align: center;
    padding: 0;
    color: white;
    font-weight: bold;
    background-color: white;
    border-radius: 3px;
    border: 1px solid rgb(86, 86, 86);
    cursor: pointer;
}

#animation-toggle.checked:hover, #animation-toggle.unchecked:hover {
    background-color: rgb(192, 192, 192);
}

#animation-toggle.checked {
    background-color: grey;
}

#animation-toggle.checked:after {
    content: "X";
}

#animation-toggle.unchecked:after {
    content: " ";
    /* background-color: red; */
}